func sync/atomic.StoreInt64

8 uses

	sync/atomic (current package)
		doc_64.go#L100: func StoreInt64(addr *int64, val int64)
		type.go#L117: func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) }

	google.golang.org/grpc/internal/channelz
		funcs.go#L217: 	atomic.StoreInt64(&i.id, 0)

	google.golang.org/grpc/internal/idle
		idle.go#L266: 	atomic.StoreInt64(&m.lastCallEndTime, time.Now().UnixNano())

	google.golang.org/grpc/internal/transport
		http2_client.go#L1703: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_client.go#L1711: 			atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L341: 	atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())
		http2_server.go#L647: 		atomic.StoreInt64(&t.lastRead, time.Now().UnixNano())